home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C / Applications / Python 1.3.3 / Python 133 68K / Demo / tkinter / matt / not-what-you-might-think-2.py < prev    next >
Text File  |  1996-05-20  |  712b  |  38 lines

  1. from Tkinter import *
  2.  
  3.  
  4. class Test(Frame):
  5.     def createWidgets(self):
  6.  
  7.     self.Gpanel = Frame(self, {'width': '1i', 
  8.                    'height' : '1i',
  9.                    'bg' : 'green'})
  10.  
  11.     # this line turns off the recalculation of geometry by masters.
  12.     self.Gpanel.tk.call('pack', 'propagate', str(self.Gpanel), "0")
  13.  
  14.     self.Gpanel.pack({'side' : 'left'})
  15.  
  16.  
  17.  
  18.     # a QUIT button
  19.     self.Gpanel.QUIT = Button(self.Gpanel, {'text': 'QUIT', 
  20.                         'fg': 'red',
  21.                         'command': self.quit})
  22.     self.Gpanel.QUIT.pack( {'side': 'left'})
  23.  
  24.     
  25.  
  26.  
  27.     def __init__(self, master=None):
  28.     Frame.__init__(self, master)
  29.     Pack.config(self)
  30.     self.createWidgets()
  31.  
  32. test = Test()
  33.  
  34. test.master.title('packer demo')
  35. test.master.iconname('packer')
  36.  
  37. test.mainloop()
  38.